home *** CD-ROM | disk | FTP | other *** search
- /*
- * Protocol to allow an object to be used in a ColCell, and
- * a description of the structure returned by this method.
- *
- * For legal stuff see the file COPYRIGHT
- */
- #include <objc/Object.h>
-
- typedef struct {
- int offset; /* column position */
- char *method; /* method name to invoke */
- SEL selector; /* filled in at run time */
- } ColDesc;
-
- @protocol ColCellData
-
- - (ColDesc *)colDesc;
-
- @end
-